home *** CD-ROM | disk | FTP | other *** search
/ The Arsenal Files 4 / The Arsenal Files 4 (Arsenal Computer).ISO / casm / au116-as.exe / IBMDOS / MAKEFILE < prev    next >
Text File  |  1994-12-11  |  674b  |  28 lines

  1. # BCC makefile
  2.  
  3. INCLUDE_PATH = i:\borlandc\include
  4. CC = bcc -ml -c -O1 -d -Z -H -Y -v -I$(INCLUDE_PATH)
  5.  
  6. # bcc = Borland's C++ command line compiler
  7. # -ml = Large Model
  8. # -c  = Compile only
  9. # -O1 = Smallest size
  10. # -d  = Collapse reused literal strings
  11. # -Z  - Suppress register reloads
  12. # -H  = Use precompiled headers
  13. # -Y  = Use Overlays
  14. # -v  = Include symbolic information in the .objs
  15. # -I  = Include file path
  16.  
  17. LIBRARIAN = tlib
  18.  
  19. .cpp.obj:
  20.    $(CC) {$*.cpp }
  21.  
  22. ibmdos.lib: env.obj      execute.obj  ftime.obj    getch.obj    handle.obj \
  23.             keyboard.obj ltoa.obj     printf.obj
  24.  
  25.    del ibmdos.lib
  26.    $(LIBRARIAN) ibmdos.lib @objfiles
  27.  
  28.